home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / libraries / select_lang.lib.php < prev    next >
PHP Script  |  2005-04-15  |  15KB  |  303 lines

  1. <?php
  2. /* $Id: select_lang.lib.php,v 2.17.2.1 2005/04/16 11:48:30 lem9 Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5.  
  6. /**
  7.  * phpMyAdmin Language Loading File
  8.  */
  9.  
  10.  
  11. /**
  12.  * We need some elements of the superglobal $_SERVER array.
  13.  */
  14. require_once('./libraries/grab_globals.lib.php');
  15.  
  16.  
  17. /**
  18.  * Define the path to the translations directory and get some variables
  19.  * from system arrays if 'register_globals' is set to 'off'
  20.  */
  21. $lang_path = 'lang/';
  22.  
  23.  
  24. /**
  25.  * All the supported languages have to be listed in the array below.
  26.  * 1. The key must be the "official" ISO 639 language code and, if required,
  27.  *    the dialect code. It can also contain some informations about the
  28.  *    charset (see the Russian case).
  29.  * 2. The first of the values associated to the key is used in a regular
  30.  *    expression to find some keywords corresponding to the language inside two
  31.  *    environment variables.
  32.  *    These values contains:
  33.  *    - the "official" ISO language code and, if required, the dialect code
  34.  *      also ('bu' for Bulgarian, 'fr([-_][[:alpha:]]{2})?' for all French
  35.  *      dialects, 'zh[-_]tw' for Chinese traditional...), the dialect has to 
  36.  *      be specified as first;
  37.  *    - the '|' character (it means 'OR');
  38.  *    - the full language name.
  39.  * 3. The second values associated to the key is the name of the file to load
  40.  *    without the 'inc.php' extension.
  41.  * 4. The last values associated to the key is the language code as defined by
  42.  *    the RFC1766.
  43.  *
  44.  * Beware that the sorting order (first values associated to keys by
  45.  * alphabetical reverse order in the array) is important: 'zh-tw' (chinese
  46.  * traditional) must be detected before 'zh' (chinese simplified) for
  47.  * example.
  48.  *
  49.  * When there are more than one charset for a language, we put the -utf-8
  50.  * last because we need the default charset to be non-utf-8 to avoid
  51.  * problems on MySQL < 4.1.x if AllowAnywhereRecoding is FALSE.
  52.  *
  53.  * For Russian, we put 1251 first, because MSIE does not accept 866
  54.  * and users would not see anything.
  55.  */
  56. $available_languages = array(
  57.     'af-iso-8859-1'     => array('af|afrikaans', 'afrikaans-iso-8859-1', 'af'),
  58.     'af-utf-8'          => array('af|afrikaans', 'afrikaans-utf-8', 'af'),
  59.     'ar-win1256'        => array('ar|arabic', 'arabic-windows-1256', 'ar'),
  60.     'ar-utf-8'          => array('ar|arabic', 'arabic-utf-8', 'ar'),
  61.     'az-iso-8859-9'     => array('az|azerbaijani', 'azerbaijani-iso-8859-9', 'az'),
  62.     'az-utf-8'          => array('az|azerbaijani', 'azerbaijani-utf-8', 'az'),
  63.     'be-win1251'        => array('be|belarusian', 'belarusian-windows-1251', 'be'),
  64.     'be-utf-8'          => array('be|belarusian', 'belarusian-utf-8', 'be'),
  65.     'bg-win1251'        => array('bg|bulgarian', 'bulgarian-windows-1251', 'bg'),
  66.     'bg-koi8-r'         => array('bg|bulgarian', 'bulgarian-koi8-r', 'bg'),
  67.     'bg-utf-8'          => array('bg|bulgarian', 'bulgarian-utf-8', 'bg'),
  68.     'bs-win1250'        => array('bs|bosnian', 'bosnian-windows-1250', 'bs'),
  69.     'bs-utf-8'          => array('bs|bosnian', 'bosnian-utf-8', 'bs'),
  70.     'ca-iso-8859-1'     => array('ca|catalan', 'catalan-iso-8859-1', 'ca'),
  71.     'ca-utf-8'          => array('ca|catalan', 'catalan-utf-8', 'ca'),
  72.     'cs-iso-8859-2'     => array('cs|czech', 'czech-iso-8859-2', 'cs'),
  73.     'cs-win1250'        => array('cs|czech', 'czech-windows-1250', 'cs'),
  74.     'cs-utf-8'          => array('cs|czech', 'czech-utf-8', 'cs'),
  75.     'da-iso-8859-1'     => array('da|danish', 'danish-iso-8859-1', 'da'),
  76.     'da-utf-8'          => array('da|danish', 'danish-utf-8', 'da'),
  77.     'de-iso-8859-1'     => array('de|german', 'german-iso-8859-1', 'de'),
  78.     'de-iso-8859-15'    => array('de|german', 'german-iso-8859-15', 'de'),
  79.     'de-utf-8'          => array('de|german', 'german-utf-8', 'de'),
  80.     'el-iso-8859-7'     => array('el|greek',  'greek-iso-8859-7', 'el'),
  81.     'el-utf-8'          => array('el|greek',  'greek-utf-8', 'el'),
  82.     'en-iso-8859-1'     => array('en|english',  'english-iso-8859-1', 'en'),
  83.     'en-utf-8'          => array('en|english',  'english-utf-8', 'en'),
  84.     'es-iso-8859-1'     => array('es|spanish', 'spanish-iso-8859-1', 'es'),
  85.     'es-iso-8859-15'    => array('es|spanish', 'spanish-iso-8859-15', 'es'),
  86.     'es-utf-8'          => array('es|spanish', 'spanish-utf-8', 'es'),
  87.     'et-iso-8859-1'     => array('et|estonian', 'estonian-iso-8859-1', 'et'),
  88.     'et-utf-8'          => array('et|estonian', 'estonian-utf-8', 'et'),
  89.     'eu-iso-8859-1'     => array('eu|basque', 'basque-iso-8859-1', 'eu'),
  90.     'eu-utf-8'          => array('eu|basque', 'basque-utf-8', 'eu'),
  91.     'fa-win1256'        => array('fa|persian', 'persian-windows-1256', 'fa'),
  92.     'fa-utf-8'          => array('fa|persian', 'persian-utf-8', 'fa'),
  93.     'fi-iso-8859-1'     => array('fi|finnish', 'finnish-iso-8859-1', 'fi'),
  94.     'fi-iso-8859-15'    => array('fi|finnish', 'finnish-iso-8859-15', 'fi'),
  95.     'fi-utf-8'          => array('fi|finnish', 'finnish-utf-8', 'fi'),
  96.     'fr-iso-8859-1'     => array('fr|french', 'french-iso-8859-1', 'fr'),
  97.     'fr-iso-8859-15'    => array('fr|french', 'french-iso-8859-15', 'fr'),
  98.     'fr-utf-8'          => array('fr|french', 'french-utf-8', 'fr'),
  99.     'gl-iso-8859-1'     => array('gl|galician', 'galician-iso-8859-1', 'gl'),
  100.     'gl-utf-8'          => array('gl|galician', 'galician-utf-8', 'gl'),
  101.     'he-iso-8859-8-i'   => array('he|hebrew', 'hebrew-iso-8859-8-i', 'he'),
  102.     'he-utf-8'          => array('he|hebrew', 'hebrew-utf-8', 'he'),
  103.     'hi-utf-8'          => array('hi|hindi', 'hindi-utf-8', 'hi'),
  104.     'hr-win1250'        => array('hr|croatian', 'croatian-windows-1250', 'hr'),
  105.     'hr-iso-8859-2'     => array('hr|croatian', 'croatian-iso-8859-2', 'hr'),
  106.     'hr-utf-8'          => array('hr|croatian', 'croatian-utf-8', 'hr'),
  107.     'hu-iso-8859-2'     => array('hu|hungarian', 'hungarian-iso-8859-2', 'hu'),
  108.     'hu-utf-8'          => array('hu|hungarian', 'hungarian-utf-8', 'hu'),
  109.     'id-iso-8859-1'     => array('id|indonesian', 'indonesian-iso-8859-1', 'id'),
  110.     'id-utf-8'          => array('id|indonesian', 'indonesian-utf-8', 'id'),
  111.     'it-iso-8859-1'     => array('it|italian', 'italian-iso-8859-1', 'it'),
  112.     'it-iso-8859-15'    => array('it|italian', 'italian-iso-8859-15', 'it'),
  113.     'it-utf-8'          => array('it|italian', 'italian-utf-8', 'it'),
  114.     'ja-euc'            => array('ja|japanese', 'japanese-euc', 'ja'),
  115.     'ja-sjis'           => array('ja|japanese', 'japanese-sjis', 'ja'),
  116.     'ja-utf-8'          => array('ja|japanese', 'japanese-utf-8', 'ja'),
  117.     'ko-euc-kr'         => array('ko|korean', 'korean-euc-kr', 'ko'),
  118.     'ko-utf-8'          => array('ko|korean', 'korean-utf-8', 'ko'),
  119.     'ka-utf-8'          => array('ka|georgian', 'georgian-utf-8', 'ka'),
  120.     'lt-win1257'        => array('lt|lithuanian', 'lithuanian-windows-1257', 'lt'),
  121.     'lt-utf-8'          => array('lt|lithuanian', 'lithuanian-utf-8', 'lt'),
  122.     'lv-win1257'        => array('lv|latvian', 'latvian-windows-1257', 'lv'),
  123.     'lv-utf-8'          => array('lv|latvian', 'latvian-utf-8', 'lv'),
  124.     'ms-iso-8859-1'     => array('ms|malay', 'malay-iso-8859-1', 'ms'),
  125.     'ms-utf-8'          => array('ms|malay', 'malay-utf-8', 'ms'),
  126.     'nl-iso-8859-1'     => array('nl|dutch', 'dutch-iso-8859-1', 'nl'),
  127.     'nl-iso-8859-15'    => array('nl|dutch', 'dutch-iso-8859-15', 'nl'),
  128.     'nl-utf-8'          => array('nl|dutch', 'dutch-utf-8', 'nl'),
  129.     'no-iso-8859-1'     => array('no|norwegian', 'norwegian-iso-8859-1', 'no'),
  130.     'no-utf-8'          => array('no|norwegian', 'norwegian-utf-8', 'no'),
  131.     'pl-iso-8859-2'     => array('pl|polish', 'polish-iso-8859-2', 'pl'),
  132.     'pl-win1250'        => array('pl|polish', 'polish-windows-1250', 'pl'),
  133.     'pl-utf-8'          => array('pl|polish', 'polish-utf-8', 'pl'),
  134.     'ptbr-iso-8859-1'   => array('pt[-_]br|brazilian portuguese', 'brazilian_portuguese-iso-8859-1', 'pt-BR'),
  135.     'ptbr-utf-8'        => array('pt[-_]br|brazilian portuguese', 'brazilian_portuguese-utf-8', 'pt-BR'),
  136.     'pt-iso-8859-1'     => array('pt|portuguese', 'portuguese-iso-8859-1', 'pt'),
  137.     'pt-iso-8859-15'    => array('pt|portuguese', 'portuguese-iso-8859-15', 'pt'),
  138.     'pt-utf-8'          => array('pt|portuguese', 'portuguese-utf-8', 'pt'),
  139.     'ro-iso-8859-1'     => array('ro|romanian', 'romanian-iso-8859-1', 'ro'),
  140.     'ro-utf-8'          => array('ro|romanian', 'romanian-utf-8', 'ro'),
  141.     'ru-win1251'        => array('ru|russian', 'russian-windows-1251', 'ru'),
  142.     'ru-cp-866'         => array('ru|russian', 'russian-cp-866', 'ru'),
  143.     'ru-koi8-r'         => array('ru|russian', 'russian-koi8-r', 'ru'),
  144.     'ru-utf-8'          => array('ru|russian', 'russian-utf-8', 'ru'),
  145.     'sk-iso-8859-2'     => array('sk|slovak', 'slovak-iso-8859-2', 'sk'),
  146.     'sk-win1250'        => array('sk|slovak', 'slovak-windows-1250', 'sk'),
  147.     'sk-utf-8'          => array('sk|slovak', 'slovak-utf-8', 'sk'),
  148.     'sl-iso-8859-2'     => array('sl|slovenian', 'slovenian-iso-8859-2', 'sl'),
  149.     'sl-win1250'        => array('sl|slovenian', 'slovenian-windows-1250', 'sl'),
  150.     'sl-utf-8'          => array('sl|slovenian', 'slovenian-utf-8', 'sl'),
  151.     'sq-iso-8859-1'     => array('sq|albanian', 'albanian-iso-8859-1', 'sq'),
  152.     'sq-utf-8'          => array('sq|albanian', 'albanian-utf-8', 'sq'),
  153.     'srlat-win1250'     => array('sr[-_]lat|serbian latin', 'serbian_latin-windows-1250', 'sr-lat'),
  154.     'srlat-utf-8'       => array('sr[-_]lat|serbian latin', 'serbian_latin-utf-8', 'sr-lat'),
  155.     'srcyr-win1251'     => array('sr|serbian', 'serbian_cyrillic-windows-1251', 'sr'),
  156.     'srcyr-utf-8'       => array('sr|serbian', 'serbian_cyrillic-utf-8', 'sr'),
  157.     'sv-iso-8859-1'     => array('sv|swedish', 'swedish-iso-8859-1', 'sv'),
  158.     'sv-utf-8'          => array('sv|swedish', 'swedish-utf-8', 'sv'),
  159.     'th-tis-620'        => array('th|thai', 'thai-tis-620', 'th'),
  160.     'th-utf-8'          => array('th|thai', 'thai-utf-8', 'th'),
  161.     'tr-iso-8859-9'     => array('tr|turkish', 'turkish-iso-8859-9', 'tr'),
  162.     'tr-utf-8'          => array('tr|turkish', 'turkish-utf-8', 'tr'),
  163.     'uk-win1251'        => array('uk|ukrainian', 'ukrainian-windows-1251', 'uk'),
  164.     'uk-utf-8'          => array('uk|ukrainian', 'ukrainian-utf-8', 'uk'),
  165.     'zhtw-big5'         => array('zh[-_](tw|hk)|chinese traditional', 'chinese_traditional-big5', 'zh-TW'),
  166.     'zhtw-utf-8'        => array('zh[-_](tw|hk)|chinese traditional', 'chinese_traditional-utf-8', 'zh-TW'),
  167.     'zh-gb2312'         => array('zh|chinese simplified', 'chinese_simplified-gb2312', 'zh'),
  168.     'zh-utf-8'          => array('zh|chinese simplified', 'chinese_simplified-utf-8', 'zh')
  169. );
  170.  
  171.  
  172. /**
  173.  * Analyzes some PHP environment variables to find the most probable language
  174.  * that should be used
  175.  *
  176.  * @param   string   string to analyze
  177.  * @param   integer  type of the PHP environment variable which value is $str
  178.  *
  179.  * @global  array    the list of available translations
  180.  * @global  string   the retained translation keyword
  181.  *
  182.  * @access  private
  183.  */
  184. function PMA_langDetect($str = '', $envType = '')
  185. {
  186.     global $available_languages;
  187.     global $lang;
  188.  
  189.     foreach ($available_languages AS $key => $value) {
  190.         // $envType =  1 for the 'HTTP_ACCEPT_LANGUAGE' environment variable,
  191.         //             2 for the 'HTTP_USER_AGENT' one
  192.         $expr = $value[0];
  193.         if (strpos($expr, '[-_]') === FALSE) {
  194.             $expr = str_replace('|', '([-_][[:alpha:]]{2,3})?|', $expr);
  195.         }
  196.         if (($envType == 1 && eregi('^(' . $expr . ')(;q=[0-9]\\.[0-9])?$', $str))
  197.             || ($envType == 2 && eregi('(\(|\[|;[[:space:]])(' . $expr . ')(;|\]|\))', $str))) {
  198.             $lang     = $key;
  199.             break;
  200.         }
  201.     }
  202. } // end of the 'PMA_langDetect()' function
  203.  
  204.  
  205. if (!isset($lang)) {
  206.     if (isset($_GET) && !empty($_GET['lang'])) {
  207.         $lang = $_GET['lang'];
  208.     }
  209.     else if (isset($_POST) && !empty($_POST['lang'])) {
  210.         $lang = $_POST['lang'];
  211.     }
  212.     else if (isset($_COOKIE) && !empty($_COOKIE['pma_lang'])) {
  213.         $lang = $_COOKIE['pma_lang'];
  214.     }
  215. }
  216.  
  217.  
  218. /**
  219.  * Do the work!
  220.  */
  221.  
  222. // compatibility with config.inc.php <= v1.80
  223. if (!isset($cfg['Lang']) && isset($cfgLang)) {
  224.     $cfg['Lang']        = $cfgLang;
  225.     unset($cfgLang);
  226. }
  227. if (!isset($cfg['DefaultLang']) && isset($cfgDefaultLang)) {
  228.     $cfg['DefaultLang'] = $cfgDefaultLang;
  229.     unset($cfgLang);
  230. }
  231.  
  232. // MySQL charsets map
  233. $mysql_charset_map = array(
  234.     'big5'         => 'big5',
  235.     'cp-866'       => 'cp866',
  236.     'euc-jp'       => 'ujis',
  237.     'euc-kr'       => 'euckr',
  238.     'gb2312'       => 'gb2312',
  239.     'gbk'          => 'gbk',
  240.     'iso-8859-1'   => 'latin1',
  241.     'iso-8859-2'   => 'latin2',
  242.     'iso-8859-7'   => 'greek',
  243.     'iso-8859-8'   => 'hebrew',
  244.     'iso-8859-8-i' => 'hebrew',
  245.     'iso-8859-9'   => 'latin5',
  246.     'iso-8859-13'  => 'latin7',
  247.     'iso-8859-15'  => 'latin1',
  248.     'koi8-r'       => 'koi8r',
  249.     'shift_jis'    => 'sjis',
  250.     'tis-620'      => 'tis620',
  251.     'utf-8'        => 'utf8',
  252.     'windows-1250' => 'cp1250',
  253.     'windows-1251' => 'cp1251',
  254.     'windows-1252' => 'latin1',
  255.     'windows-1256' => 'cp1256',
  256.     'windows-1257' => 'cp1257',
  257. );
  258.  
  259. // Lang forced
  260. if (!empty($cfg['Lang'])) {
  261.     $lang = $cfg['Lang'];
  262. }
  263.  
  264. // If '$lang' is defined, ensure this is a valid translation
  265. if (!empty($lang) && empty($available_languages[$lang])) {
  266.     $lang = '';
  267. }
  268.  
  269. // Language is not defined yet :
  270. // 1. try to findout user's language by checking its HTTP_ACCEPT_LANGUAGE
  271. //    variable
  272. if (empty($lang) && !empty($HTTP_ACCEPT_LANGUAGE)) {
  273.     $accepted    = explode(',', $HTTP_ACCEPT_LANGUAGE);
  274.     $acceptedCnt = count($accepted);
  275.     for ($i = 0; $i < $acceptedCnt && empty($lang); $i++) {
  276.         PMA_langDetect($accepted[$i], 1);
  277.     }
  278. }
  279. // 2. try to findout user's language by checking its HTTP_USER_AGENT variable
  280. if (empty($lang) && !empty($HTTP_USER_AGENT)) {
  281.     PMA_langDetect($HTTP_USER_AGENT, 2);
  282. }
  283.  
  284. // 3. Didn't catch any valid lang : we use the default settings
  285. if (empty($lang)) {
  286.     $lang = $cfg['DefaultLang'];
  287. }
  288.  
  289. // 4. Checks whether charset recoding should be allowed or not
  290. $allow_recoding = FALSE; // Default fallback value
  291. if (!isset($convcharset) || empty($convcharset)) {
  292.     if (isset($_COOKIE['pma_charset'])) {
  293.         $convcharset = $_COOKIE['pma_charset'];
  294.     } else {
  295.         $convcharset = $cfg['DefaultCharset'];
  296.     }
  297. }
  298.  
  299. // 5. Defines the associated filename and load the translation
  300. $lang_file = $lang_path . $available_languages[$lang][1] . '.inc.php';
  301. require_once('./' . $lang_file);
  302. ?>
  303.